home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20041116-20060924 / 000387_fdc@columbia.edu_Thu Jul 20 10:49:40 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!not-for-mail
  2. From: Frank da Cruz <fdc@columbia.edu>
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: file pattern matching on files
  5. Date: Thu, 20 Jul 2006 14:48:15 +0000 (UTC)
  6. Organization: PANIX Public Access Internet and UNIX, NYC
  7. Lines: 23
  8. Message-ID: <slrnebv5tf.kfh.fdc@panix1.panix.com>
  9. References: <ZTwvg.428$gF6.317@newsread2.news.pas.earthlink.net>
  10. Reply-To: fdc@columbia.edu
  11. NNTP-Posting-Host: panix1.panix.com
  12. X-Trace: reader2.panix.com 1153406895 23526 166.84.1.1 (20 Jul 2006 14:48:15 GMT)
  13. X-Complaints-To: abuse@panix.com
  14. NNTP-Posting-Date: Thu, 20 Jul 2006 14:48:15 +0000 (UTC)
  15. User-Agent: slrn/0.9.8.0 (NetBSD)
  16. Xref: panix comp.protocols.kermit.misc:15518
  17.  
  18. On 2006-07-19, <nospam@killspam.org> <nospam@killspam.org> wrote:
  19. : Maybe I'm missing something obvious, but:
  20. :
  21. : I would like to be able to have: get /binary *.foo match  both  file.foo and 
  22. : file.FOO
  23. :
  24. : I was hopeful that "set case off" would take care of this for me, and have 
  25. : looked at the help get for case-sensitive options, to no avail.
  26. :
  27. : I know I could do get /binary *.[Ff]* to match, but I don't really want to 
  28. : have to mod my scripts to handle case sensitive lookups; would prefer a 
  29. : global setting or command line switch to accomplish the task, if possible.
  30. :
  31. : I use k95 2.1.3 for m$ and 8.0.209 on my *nix machines....
  32. :
  33. Short answer: sorry, no, you can't do what you want without using wildcards
  34. that the Kermit server understands.  But watch out: if two or more files
  35. exist on the Unix host whose names differ only by casing of letters, they
  36. will be the SAME file on Windows.  (K95 will create new names for you to
  37. keep the files from overwriting each other, but they aren't pretty -- this
  38. is a pitfall of mixing case-sensitive and case-insensitive file systems.)
  39.  
  40. - Frank